home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
SoundAndMusic
/
cmix
/
Minc
/
graf.main.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-03-16
|
353b
|
32 lines
#include "defs.h"
/* points to tree to be executed once yacc gets done */
Tree program;
main()
{
init();
yyparse();
exct(program);
}
init (){};
parse_dispatch(str,args,n)
char *str;
int n;
double args[];
{
int i1;
printf ("%s: ",str);
for (i1=0;i1<n;i1++) {
printf ("%g ",args[i1]);
}
printf(" <n_args=%d>\n\n",n);
return -999;
}